home *** CD-ROM | disk | FTP | other *** search
/ BUG 1 / BUGCD1996_0708.ISO / pc / util / minilin / minilin.exe / USR / BIN / CHECKALI.{88 < prev    next >
Text File  |  1994-04-02  |  360b  |  17 lines

  1. #!/bin/sh
  2. # checkalias: part of the Elm mail system
  3. # @(#): checkalias.SH,v 5.2 1993/04/12 02:11:05 syd Exp $
  4. #        Copyright (c) 1988-1992 USENET Community Trust
  5. #         Copyright (c) 1986,1987 Dave Taylor
  6.  
  7.  
  8. if [ $# -eq 0 ] ; then
  9.     echo "usage: $0 alias ..." 1>&2
  10.     exit 1
  11. fi
  12.  
  13. elmalias -en $@ | \
  14.     /var/lib/elm/prlong -w 78 -1 "Expands to: " -l "    " -f ", "
  15. exit $?
  16.  
  17.